home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap09 / b09w005.cc2 < prev    next >
Text File  |  1998-06-07  |  998b  |  23 lines

  1. 0, The AddNameToListBox Sub procedure adds 
  2. 3, names to a list box. First, the 
  3. 6, procedure receives the name to be added with the 
  4. 8, person$ argument, a string variable 
  5. 10, received by reference during the procedure 
  6. 12, call. If the value of person$ is not 
  7. 15, empty, or null, the specified name is added 
  8. 19, to the List1 list box object with the 
  9. 21, AddItem method, and a confirming message 
  10. 24, is displayed by the MsgBox function. If 
  11. 28, the argument is null, the procedure 
  12. 30, skips the AddItem method and displays the 
  13. 32, message, "Name not specified." Note the 
  14. 37, third line in the Sub procedure, which 
  15. 38, uses the AddItem method to modify a list 
  16. 41, box object on Form1 from the standard 
  17. 44, module. Because the list box is associated 
  18. 48, with a different file, you need to prefix 
  19. 51, the object name with Form1 and a 
  20. 53, period. This long-distance syntax is a little 
  21. 57, like dialing a country code when you 
  22. 59, make a long-distance call.
  23. 60, END